<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(var.css);
.privacy {
  padding: 200px;
  padding-top: 150px;
  background-color: #f2f2f2;
}
.privacy .privacy_header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  font-size: 18px;
  height: 80px;
  color: #261f1e;
  background-color: white;
  border-bottom: 1px solid #ccc;
}
.privacy .privacy_header span {
  position: relative;
  transition: var(--primary-transition);
  cursor: pointer;
}
.privacy .privacy_header span:after {
  position: absolute;
  bottom: -30px;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  transition: var(--primary-transition);
  background-color: var(--primary-color);
}
.privacy .privacy_header .active {
  color: var(--primary-color);
}
.privacy .privacy_header .active:after {
  width: 100%;
}
.privacy .privacy_content {
  background-color: white;
  padding: 80px;
  box-sizing: border-box;
}
.privacy .privacy_content .content_clause {
  display: none;
}
.privacy .privacy_content .content_clause .content_title {
  font-size: 16.8px;
  font-weight: bold;
  margin-bottom: 20px;
}
.privacy .privacy_content .content_clause .content_text {
  font-size: 14px;
  margin-bottom: 20px;
}
.privacy .privacy_content .content_clause .content_list li {
  font-size: 14px;
  margin-left: 60px;
  margin-bottom: 20px;
  list-style: outside;
  list-style-type: decimal;
}
.privacy .privacy_content .content_clause .footer {
  margin: 80px 0;
}
.privacy .privacy_content .content_clause .more_list li {
  font-size: 14px;
  padding-bottom: 20px;
  position: relative;
  cursor: pointer;
  display: block;
  width: fit-content;
}
.privacy .privacy_content .content_clause .more_list li a {
  color: red;
}
.privacy .privacy_content .content_clause .more_list li:after {
  position: relative;
  bottom: 0;
  content: "";
  display: block;
  width: 0;
  background-color: red;
  height: 1px;
}
.privacy .privacy_content .content_clause .more_list li:hover:after {
  width: 100%;
}
.privacy .privacy_content .show {
  display: block;
}
@media screen and (max-width: 680px) {
  .privacy {
    width: 100%;
    padding: 0;
    padding: 100px 16px;
    box-sizing: border-box;
  }
  .privacy .privacy_header {
    height: 50px;
    font-size: 16.5px;
    color: #898989;
    justify-content: left;
    padding: 0 15px;
    box-sizing: border-box;
    gap: 30px;
    width: 100%;
  }
  .privacy .privacy_header span:after {
    bottom: -15px;
  }
  .privacy .privacy_content {
    width: 100%;
    padding: 40px 16px;
    box-sizing: border-box;
  }
  .privacy .privacy_content .content_clause {
    display: none;
  }
  .privacy .privacy_content .content_clause .content_title {
    font-size: 16.8px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .privacy .privacy_content .content_clause .content_text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .privacy .privacy_content .content_clause .content_list li {
    font-size: 14px;
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: decimal;
  }
  .privacy .privacy_content .content_clause .footer {
    margin: 80px 0;
  }
  .privacy .privacy_content .content_clause .more_list li {
    color: red;
    font-size: 14px;
    padding-bottom: 20px;
    position: relative;
    cursor: pointer;
    display: block;
    width: fit-content;
  }
  .privacy .privacy_content .content_clause .more_list li:after {
    position: relative;
    bottom: 0;
    content: "";
    display: block;
    width: 0;
    background-color: red;
    height: 1px;
  }
  .privacy .privacy_content .content_clause .more_list li:hover:after {
    width: 100%;
  }
  .privacy .privacy_content .show {
    display: block;
  }
}
</pre></body></html>